home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / ds5000.md / netDFMach.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  4KB  |  136 lines

  1. /* 
  2.  * netDFMach.c --
  3.  *
  4.  *    Machine dependent routines for the DEC FDDI controller.
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/ds5000.md/netDFMach.c,v 1.2 92/06/08 22:45:59 jhh Exp $";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <sys.h>
  22. #include <list.h>
  23. #include <netInt.h>
  24. #include <vm.h>
  25. #include <vmMach.h>
  26. #include <mach.h>
  27. #include <machMon.h>
  28. #include <dbg.h>
  29. #include <assert.h>
  30.  
  31. #include <netDFInt.h>
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * NetDFMachInit --
  37.  *
  38.  *    Verify that the interface exists and set up the machine dependent
  39.  *    state.
  40.  *
  41.  * Results:
  42.  *    SUCCESS if the FDDI controller was found and initialized,
  43.  *    FAILURE otherwise.
  44.  *
  45.  * Side effects:
  46.  *    Initializes the NetDFState record, as well as the chip.
  47.  *
  48.  *----------------------------------------------------------------------
  49.  */
  50.  
  51. ReturnStatus
  52. NetDFMachInit(interPtr, statePtr)
  53.     Net_Interface    *interPtr;     /* Network interface. */
  54.     NetDFState        *statePtr;    /* State structure. */
  55. {
  56.     char        *slotAddr;
  57.     ReturnStatus     status;
  58.     int            slot;
  59.     Mach_SlotInfo    slotInfo;
  60.     static char        *vendor = "DEC";
  61.     static char        *module = "PMAF-AA";
  62.  
  63.     slot = (int) interPtr->ctrlAddr;
  64.     slotAddr = (char *) MACH_IO_SLOT_ADDR(slot);
  65.  
  66.     statePtr->slotAddr = (volatile char *)MACH_IO_SLOT_ADDR(slot);
  67.     /*
  68.      * Locate the registers
  69.      */
  70.     statePtr->regReset = (volatile Net_DFReg *) 
  71.     (slotAddr + NET_DF_MACH_RESET_OFFSET);
  72.     statePtr->regCtrlA = (volatile Net_DFReg *) 
  73.     (slotAddr + NET_DF_MACH_CTRLA_OFFSET);
  74.     statePtr->regCtrlB = (volatile Net_DFReg *) 
  75.     (slotAddr + NET_DF_MACH_CTRLB_OFFSET);
  76.     statePtr->regEvent = (volatile Net_DFReg *) 
  77.     (slotAddr + NET_DF_MACH_INT_EVENT_OFFSET);
  78.     statePtr->regMask = (volatile Net_DFReg *) 
  79.     (slotAddr + NET_DF_MACH_INT_MASK_OFFSET);
  80.     statePtr->regStatus = (volatile Net_DFReg *) 
  81.     (slotAddr + NET_DF_MACH_STATUS_OFFSET);
  82.     /*
  83.      * Locate the command ring
  84.      */
  85.     statePtr->comRingPtr = (volatile NetDFCommandDesc *)
  86.     (slotAddr + NET_DF_MACH_COMMAND_RING_OFFSET);
  87.     statePtr->comNextPtr = statePtr->comRingPtr;
  88.     statePtr->comLastPtr = statePtr->comRingPtr +
  89.     (NET_DF_NUM_COMMAND_DESC - 1);
  90.  
  91.     statePtr->comBufPtr = (volatile NetDFCommandBuf *)
  92.     (slotAddr + NET_DF_MACH_COMMAND_BUF_OFFSET);
  93.  
  94.     /*
  95.      * Locate the error log
  96.      */
  97.     statePtr->errLogPtr = (volatile unsigned char *)
  98.     (slotAddr + NET_DF_MACH_ERROR_LOG_OFFSET);
  99.     /*
  100.      * Locate the UNSOLICITED ring
  101.      */
  102.     statePtr->unsolFirstDescPtr = (NetDFUnsolDesc *)
  103.     (slotAddr + NET_DF_MACH_UNSOL_RING_OFFSET);
  104.     statePtr->unsolNextDescPtr = statePtr->unsolFirstDescPtr;
  105.     statePtr->unsolLastDescPtr = statePtr->unsolFirstDescPtr +
  106.     (NET_DF_MACH_NUM_UNSOL_DESC - 1);
  107.  
  108.     /*
  109.      * Locate the buffers for the RMC XMT ring
  110.      */
  111.     statePtr->rmcXmtFirstBufPtr = (NetDFRmcXmtBuf *)
  112.     (slotAddr + NET_DF_MACH_RMC_XMT_BUF_OFFSET);
  113.  
  114.     /*
  115.      * Check that the device exists and is an FDDIcontroller 700 interface.
  116.      */
  117.     status = Mach_GetSlotInfo(slotAddr + NET_DF_MACH_OPTION_ROM_OFFSET, 
  118.                   &slotInfo);
  119.  
  120.     if (status != SUCCESS) {
  121.     return status;
  122.     }
  123.  
  124.     if (strcmp(slotInfo.vendor, vendor) || strcmp(slotInfo.module, module)) {
  125.     return FAILURE;
  126.     } 
  127.  
  128.     interPtr->name = module;
  129.     Mach_SetIOHandler(slot, Net_Intr, (ClientData) interPtr);
  130.     /*
  131.      * Get the FDDI address from the results of the INIT command
  132.      */
  133.     return (SUCCESS); 
  134. }
  135.  
  136.